home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 081 / oecc_106.arc / OECC_103.NEW < prev    next >
Encoding:
Text File  |  1987-09-25  |  1.4 KB  |  29 lines

  1. Added aliasing of colors whose numeric value falls below 32. In other words,
  2. where a color used to compile into a control code that could be interpreted
  3. as a non-oANSI control character, it is preceded by a ^P and its high bit is
  4. turned on.
  5.  
  6. This makes some of the previously impossible tasks available. Before using
  7. aliasing, it was a no-no to use something like this:
  8.  
  9. [sline]Hello, [lightgreen]sysop.
  10.  
  11. The problem with it was that [lightgreen] compiled into ^J which is the control
  12. code for a new line (line feed). That meant that the word "sysop" was displayed
  13. to everyone. [sline] asked to have it displayed to the sysop only, but because
  14. ^J placed it onto a new line, everyone could see it.
  15.  
  16. This is no longer the case. Any color combination can be safely used under all
  17. circumstances.
  18.  
  19. MONITOR was adjusted accordingly. In its previous version, it missed the code
  20. for aliasing altogether. Now it interprets it correctly. It will also interpret
  21. SOME of the OEC codes (e.g. [quote],[user]). Not all of them. It will prompt
  22. you to press ENTER to continue when OEC is telling it to. But it will not wait
  23. for you to hit ENTER. The reason? Remember that MONITOR is used as a DOS
  24. filter. Because of that, it takes its input from OECC output and ignores the
  25. keyboard. Thus it cannot wait for you to press ENTER, or it would be waiting
  26. for ever.
  27.  
  28. Thanks to Ted Powell for pointing out the problem.
  29.